#!/usr/bin/perl

my $EXIT_VALUE = 0;

use Mac::Gestalt qw(%Gestalt gestaltSystemVersion);

#// If the operating system is lower than 10.6.0 = 0x1060 = 4192,
#// then we want to exit with a non-zero value that indicates a
#// particular string to use from the InstallationCheck.strings file.

if ( $Gestalt{gestaltSystemVersion()} lt 4192 )
{
	$EXIT_VALUE = (( 3 << 5 ) | 16 );
}
exit($EXIT_VALUE);
